home *** CD-ROM | disk | FTP | other *** search
/ Languguage OS 2 / Languguage OS II Version 10-94 (Knowledge Media)(1994).ISO / gnu / gmp-132.lha / gmp-1.3.2 / mpz_get_str.c < prev    next >
C/C++ Source or Header  |  1993-05-02  |  1KB  |  40 lines

  1. /* mpz_get_str (string, base, mp_src) -- Convert the multiple precision
  2.    number MP_SRC to a string STRING of base BASE.  If STRING is NULL
  3.    allocate space for the result.  In any case, return a pointer to the
  4.    result.  If STRING is not NULL, the caller must ensure enough space is
  5.    available to store the result.
  6.  
  7. Copyright (C) 1991 Free Software Foundation, Inc.
  8.  
  9. This file is part of the GNU MP Library.
  10.  
  11. The GNU MP Library is free software; you can redistribute it and/or modify
  12. it under the terms of the GNU General Public License as published by
  13. the Free Software Foundation; either version 2, or (at your option)
  14. any later version.
  15.  
  16. The GNU MP Library is distributed in the hope that it will be useful,
  17. but WITHOUT ANY WARRANTY; without even the implied warranty of
  18. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  19. GNU General Public License for more details.
  20.  
  21. You should have received a copy of the GNU General Public License
  22. along with the GNU MP Library; see the file COPYING.  If not, write to
  23. the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
  24.  
  25. #include "gmp.h"
  26. #include "gmp-impl.h"
  27.  
  28. char *
  29. #ifdef __STDC__
  30. mpz_get_str (char *str, int base, const MP_INT *m)
  31. #else
  32. mpz_get_str (str, base, m)
  33.      char *str;
  34.      int base;
  35.      const MP_INT *m;
  36. #endif
  37. {
  38.   return _mpz_get_str (str, base, m);
  39. }
  40.